#Python Program 12- Python Modules
#Random Module
import random
dice1 = [1, 2, 3, 4, 5, 6]
print(random.choice(dice1))
print('----------------------')
#Math Module
import math
print(math.e)
print(math.pi)
print(math.tau)
print(math.inf)
print(math.nan)
print(math.asin(1.0))
print('---------------------')
#Time Module
import time
second = time.time()
print(second)
seconds = second
local_time = time.ctime(seconds)
print('local time: ', local_time)
print('printed immediately')
time.sleep(2.5)
print('printed after 2.5 seconds')